home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJLSR111.ZIP / libsrc / c / gen / getlogin.c < prev    next >
C/C++ Source or Header  |  1992-08-24  |  345b  |  20 lines

  1. /*
  2.   (c) Copyright 1992 Eric Backus
  3.  
  4.   This software may be used freely so long as this copyright notice is
  5.   left intact.  There is no warrantee on this software.
  6. */
  7.  
  8. #include <std.h>
  9.  
  10. char *
  11. getlogin(void)
  12. {
  13.     char    *p;
  14.  
  15.     p = getenv("USER");
  16.     if (!p) p = getenv("LOGNAME");
  17.     if (!p) p = "dosuser";
  18.     return p;
  19. }
  20.